
/* Contact Section Styles */
.contact-section {
  background: linear-gradient(120deg, #fff0fa 0%, #fff7f0 100%);
  padding: 4.5rem 0 2.5rem 0;
}
.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1 1 320px;
  min-width: 300px;
  max-width: 400px;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
}
.contact-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: #181c24;
}
.contact-gradient {
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.contact-desc {
  color: #444;
  font-size: 1.18rem;
  margin-bottom: 2.2rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1.2rem;
}
.contact-icon {
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-right: 0.5rem;
}
.contact-list strong {
  font-size: 1.15rem;
  color: #181c24;
}
.contact-list a {
  color: #444;
  text-decoration: none;
}
.contact-social {
  margin-top: 1.5rem;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  color: #fff;
  font-size: 1.2rem;
  margin-right: 0.7rem;
  transition: background 0.2s, color 0.2s;
}
.contact-social a:hover {
  background: #fff;
  color: #ff5ca7;
  border: 1.5px solid #ff5ca7;
}
.contact-form-box {
  flex: 1 1 400px;
  min-width: 320px;
  max-width: 500px;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 24px 0 rgba(44,44,44,0.08);
  padding: 2.5rem 2rem 2.2rem 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #181c24;
}
.contact-form label {
  font-size: 1.05rem;
  color: #181c24;
  margin-bottom: 0.3rem;
  margin-top: 0.7rem;
}
.contact-form input,
.contact-form textarea {
  border: 1.5px solid #e0b3d6;
  border-radius: 0.7rem;
  padding: 0.9rem 1.1rem;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  outline: none;
  transition: border 0.2s;
  background: #faf7fa;
  color: #181c24;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ff5ca7;
}
.contact-form button {
  margin-top: 1.2rem;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2.2rem;
  }
  .contact-form-box, .contact-info {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.7rem;
  }
}
/* About Ek Pahel Section */
.about-ekpahel-section {
  padding: 4.5rem 0 2.5rem 0;
  background: none;
  text-align: center;
}

/* Membership Section Custom Styles */
.membership-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  padding: 0 1.5rem;
}

.membership-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #181c24;
  margin-bottom: 0.5rem;
}
.membership-title .gradient-text {
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.membership-desc {
  color: #444;
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
}
.about-ekpahel-section {
  padding: 4.5rem 0 2.5rem 0;
  background: none;
  text-align: center;
}
.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: #181c24;
}
.about-title .about-gradient {
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.about-desc {
  color: #444;
  font-size: 1.25rem;
  margin-bottom: 2.8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-highlight {
  color: #e6006d;
  font-weight: 700;
}
.about-info-box, .about-quote-box {
  background: linear-gradient(90deg,#fff0fa 0%,#fff7f0 100%);
  border-radius: 1.3rem;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
  font-size: 1.1rem;
}
.about-quote-box em {
  display: block;
  font-size: 1.15rem;
  color: #7a3e7a;
  margin-bottom: 0.7rem;
}
.about-quote-box span {
  color: #444;
  display: block;
  margin-top: 0.7rem;
}
@media (max-width: 700px) {
  .membership-title {
    font-size: 2.2rem;
  }
  .membership-desc {
    font-size: 1.05rem;
  }
  .about-title {
    font-size: 1.5rem;
  }
  .about-info-box, .about-quote-box {
    font-size: 0.98rem;
    padding: 0.7rem 0.8rem;
  }
}
.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: #181c24;
}
.about-title .about-gradient {
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.about-desc {
  color: #444;
  font-size: 1.25rem;
  margin-bottom: 2.8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-cards {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-card {
  background: linear-gradient(120deg, #fff0fa 0%, #fff7f0 100%);
  border-radius: 1.3rem;
  box-shadow: 0 2px 12px 0 rgba(44,44,44,0.04);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 300px;
  max-width: 350px;
  flex: 1 1 300px;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,122,47,0.13), 0 4px 16px 0 rgba(215,38,167,0.13);
  transform: translateY(-4px) scale(1.03);
}
.about-icon {
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.about-card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  color: #181c24;
}
.about-card-desc {
  color: #444;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .about-cards {
    flex-direction: column;
    align-items: center;
  }
  .about-card {
    min-width: 220px;
    max-width: 100%;
  }
}
body {
  background: linear-gradient(120deg, #ffe0f7 0%, #fff2e0 100%);
  min-height: 100vh;
}

.membership-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 45vh;
  text-align: center;
  padding: 0 1.5rem;
}

.membership-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #181c24;
  margin-bottom: 0.5rem;
}
.membership-title .gradient-text {
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.membership-desc {
  color: #444;
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
}
.membership-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.membership-btn {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 2.5rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-top: 0.2rem;
}
.membership-btn-primary {
  background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(44,44,44,0.08);
  position: relative;
}
.membership-btn-primary::after {
  content: '\2192';
  margin-left: 0.7rem;
  font-size: 1.2rem;
  vertical-align: middle;
}
.membership-btn-primary:hover {
  background: linear-gradient(90deg, #ff7a2f 0%, #ff5ca7 100%);
  color: #fff;
}
.membership-btn-outline {
  background: transparent;
  color: #ff5ca7;
  border: 2px solid #ff5ca7;
}
.membership-btn-outline:hover {
  background: #ff5ca7;
  color: #fff;
}
@media (max-width: 700px) {
  .membership-title {
    font-size: 2.2rem;
  }
  .membership-desc {
    font-size: 1.05rem;
  }
  .membership-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}
